home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-02 | 1005 b | 51 lines | [TEXT/MPS ] |
- { UOffscreenManager.p}
- { Copyright © 1990, 1991 by Apple Computer, Inc. All rights reserved.}
-
- { Change List:
-
- GAP 060990 Modified USES when changing from Lightspeed Pascal to MPW.
- GAP 020490 Changes to conform to new name for the application global
- and use of UIconDragging unit.
-
- End Change List. }
-
- PROGRAM Nothing;
-
- { This program demonstrates how to track on the desktop from one view to another. }
-
- {$MC68020-}
- {$MC68881-}
-
- USES
-
- { MacApp }
- UMacApp,
-
- { Standard MacApp Building Blocks }
- UPrinting,
- UGridView,
-
- { Other Building Blocks }
- UReliefGridView,
- UOSBitmap,
- UOSImage,
- UIconDragging,
- UNothing;
-
-
- BEGIN {Nothing}
- InitToolBox;
- IF ValidateConfiguration(gConfiguration) THEN
- BEGIN
- InitUMacApp(8);
- InitUPrinting;
- InitUGridView;
- InitUIconDragging;
- New(gLooneyApplication);
- FailNIL(gLooneyApplication);
- gLooneyApplication.ILooneyApplication(kFileType);
- gLooneyApplication.Run;
- END
- ELSE
- StdAlert(phUnsupportedConfiguration);
- END. {Nothing}